home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
misc_pto
/
basic-c
/
test1.bas
< prev
next >
Wrap
BASIC Source File
|
1988-12-20
|
325b
|
20 lines
rem - this is a remark
cls
for x = 1 to 5
print "X=";x," X/2=";x/2," X*X=";x*x,"X^X=";x^x;"X%%1=";X%X
next
for x=1 to 10
print "x:";x,
for y = 1 to 5
print "y=";y,
next
print
next
100
input "enter a number fron 1-10 ", y
if y < 1 then goto 100
if y > 10 then goto 100
print "very well!"
input y
end